home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 5619 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.6 KB

  1. Path: interramp.com!usenet
  2. From: Barnett@interramp.com (Barnett E. Kurtz)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: HELP!!
  5. Date: Mon, 05 Feb 1996 22:19:58 GMT
  6. Organization: EntroData, Inc.
  7. Message-ID: <4f5vt3$jnk@usenet7.interramp.com>
  8. References: <4f4ln2$8ef@nntp.igs.net>
  9. Reply-To: Barnett@interramp.com
  10. NNTP-Posting-Host: ip118.philadelphia.pa.interramp.com
  11. X-Newsreader: Forte Free Agent 1.0.82
  12.  
  13. Dave, 
  14.  
  15. I believe the dlls need to reside in a directory that your executable
  16. can locate. The default search includes \windows\system, and most
  17. folks put copies of their debug/production owl/crt dlls there. Having
  18. them in \bcc45\bin is not enough. Borland includes a utility that
  19. allows you to swap debug/production builds on the fly. That's why they
  20. are there. See also 'distribution' in the docs.
  21.  
  22. Please, next time post in  comp.os.ms-windows.programmer, etc. 
  23.  
  24. Dave Hebert <daveh@ptbo.igs.net> wrote:
  25.  
  26. >Okay, here's the deal.
  27.  
  28. >I'm a very new C++ programmer.  I'm in a Computers and Information 
  29. >Systems course at a college in Peterborough, Ontario, Canada.
  30.  
  31. >Here's my problem.
  32.  
  33. >Recently I purchased turbo C++ v4.5 so I could do all my work at home as 
  34. >computer time at the college is limited.
  35.  
  36. >The first thing I did after I installed it was open a new project and 
  37. >code:
  38.  
  39. >#include <owl\applicat.h>
  40.  
  41. >int OwlMain(int, char*[])
  42. >{
  43. >    TApplication app("Tiniest App");
  44. >    return app.Run();
  45. >}
  46.  
  47. >I then proceeded to compile and run.  It compiled then linked and then I 
  48. >get three error messages:
  49.  
  50. >"Can't find OWL250.DLL"
  51. >"Can't find BIDS45.DLL"
  52. >"Can't find BC450RTL.DLL"
  53.  
  54. >That's bullshit because they ARE there!
  55.  
  56. >What's the problem?
  57.  
  58.  
  59.  
  60. -
  61. barnett@interramp.com
  62. -
  63.  
  64.